home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / demos / OpenGL / backtrace / rgb.c++ < prev    next >
C/C++ Source or Header  |  1996-11-11  |  7KB  |  254 lines

  1. /*
  2.  * (c) Copyright 1993, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED
  4.  * Permission to use, copy, modify, and distribute this software for
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission.
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  *
  25.  * US Government Users Restricted Rights
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
  36.  */
  37. #include <stdio.h>
  38. #include <stdlib.h> 
  39. #include <string.h>
  40. #include <GL/gl.h>
  41. #include "rgb.h"
  42.  
  43. /******************************************************************************/
  44.  
  45. typedef struct _rawImageRec {
  46.     unsigned short imagic;
  47.     unsigned short type;
  48.     unsigned short dim;
  49.     unsigned short sizeX, sizeY, sizeZ;
  50.     unsigned long min, max;
  51.     unsigned long wasteBytes;
  52.     char name[80];
  53.     unsigned long colorMap;
  54.     FILE *file;
  55.     unsigned char *tmp, *tmpR, *tmpG, *tmpB;
  56.     unsigned long rleEnd;
  57.     GLuint *rowStart;
  58.     GLint *rowSize;
  59. } rawImageRec;
  60.  
  61. /******************************************************************************/
  62.  
  63. static void ConvertShort(unsigned short *array, long length)
  64. {
  65.     unsigned long b1, b2;
  66.     unsigned char *ptr;
  67.  
  68.     ptr = (unsigned char *)array;
  69.     while (length--) {
  70.     b1 = *ptr++;
  71.     b2 = *ptr++;
  72.     *array++ = (b1 << 8) | (b2);
  73.     }
  74. }
  75.  
  76. static void ConvertLong(GLuint *array, long length)
  77. {
  78.     unsigned long b1, b2, b3, b4;
  79.     unsigned char *ptr;
  80.  
  81.     ptr = (unsigned char *)array;
  82.     while (length--) {
  83.     b1 = *ptr++;
  84.     b2 = *ptr++;
  85.     b3 = *ptr++;
  86.     b4 = *ptr++;
  87.     *array++ = (b1 << 24) | (b2 << 16) | (b3 << 8) | (b4);
  88.     }
  89. }
  90.  
  91. static rawImageRec *RawImageOpen(char *fileName)
  92. {
  93.     union {
  94.     int testWord;
  95.     char testByte[4];
  96.     } endianTest;
  97.     rawImageRec *raw;
  98.     GLenum swapFlag;
  99.     int x;
  100.  
  101.     endianTest.testWord = 1;
  102.     if (endianTest.testByte[0] == 1) {
  103.     swapFlag = GL_TRUE;
  104.     } else {
  105.     swapFlag = GL_FALSE;
  106.     }
  107.  
  108.     raw = (rawImageRec *)malloc(sizeof(rawImageRec));
  109.     if (raw == NULL) {
  110.     return NULL;
  111.     }
  112.     if ((raw->file = fopen(fileName, "rb")) == NULL) {
  113.     return NULL;
  114.     }
  115.  
  116.     fread(raw, 1, 12, raw->file);
  117.  
  118.     if (swapFlag) {
  119.     ConvertShort(&raw->imagic, 6);
  120.     }
  121.  
  122.     raw->tmp = (unsigned char *)malloc(raw->sizeX*256);
  123.     raw->tmpR = (unsigned char *)malloc(raw->sizeX*256);
  124.     raw->tmpG = (unsigned char *)malloc(raw->sizeX*256);
  125.     raw->tmpB = (unsigned char *)malloc(raw->sizeX*256);
  126.     if (raw->tmp == NULL || raw->tmpR == NULL || raw->tmpG == NULL ||
  127.     raw->tmpB == NULL) {
  128.     return NULL;
  129.     }
  130.  
  131.     if ((raw->type & 0xFF00) == 0x0100) {
  132.     x = raw->sizeY * raw->sizeZ * sizeof(GLuint);
  133.     raw->rowStart = (GLuint *)malloc(x);
  134.     raw->rowSize = (GLint *)malloc(x);
  135.     if (raw->rowStart == NULL || raw->rowSize == NULL) {
  136.         return NULL;
  137.     }
  138.     raw->rleEnd = 512 + (2 * x);
  139.     fseek(raw->file, 512, SEEK_SET);
  140.     fread(raw->rowStart, 1, x, raw->file);
  141.     fread(raw->rowSize, 1, x, raw->file);
  142.     if (swapFlag) {
  143.         ConvertLong(raw->rowStart, x/sizeof(GLuint));
  144.         ConvertLong((GLuint *)raw->rowSize, x/sizeof(GLint));
  145.     }
  146.     }
  147.     return raw;
  148. }
  149.  
  150. static void RawImageClose(rawImageRec *raw)
  151. {
  152.  
  153.     fclose(raw->file);
  154.     free(raw->tmp);
  155.     free(raw->tmpR);
  156.     free(raw->tmpG);
  157.     free(raw->tmpB);
  158.     free(raw);
  159. }
  160.  
  161. static void RawImageGetRow(rawImageRec *raw, unsigned char *buf, int y, int z)
  162. {
  163.     unsigned char *iPtr, *oPtr, pixel;
  164.     int count;
  165.  
  166.     if ((raw->type & 0xFF00) == 0x0100) {
  167.     fseek(raw->file, raw->rowStart[y+z*raw->sizeY], SEEK_SET);
  168.     fread(raw->tmp, 1, (unsigned int)raw->rowSize[y+z*raw->sizeY],
  169.           raw->file);
  170.  
  171.     iPtr = raw->tmp;
  172.     oPtr = buf;
  173.     while (1) {
  174.         pixel = *iPtr++;
  175.         count = (int)(pixel & 0x7F);
  176.         if (!count) {
  177.         return;
  178.         }
  179.         if (pixel & 0x80) {
  180.         while (count--) {
  181.             *oPtr++ = *iPtr++;
  182.         }
  183.         } else {
  184.         pixel = *iPtr++;
  185.         while (count--) {
  186.             *oPtr++ = pixel;
  187.         }
  188.         }
  189.     }
  190.     } else {
  191.     fseek(raw->file, 512+(y*raw->sizeX)+(z*raw->sizeX*raw->sizeY),
  192.           SEEK_SET);
  193.     fread(buf, 1, raw->sizeX, raw->file);
  194.     }
  195. }
  196.  
  197. static void RawImageGetData(rawImageRec *raw, RGBImageRec *final)
  198. {
  199.     unsigned char *ptr;
  200.     int i, j;
  201.  
  202.     final->data = (unsigned char *)malloc((raw->sizeX+1)*(raw->sizeY+1)*4);
  203.     if (final->data == NULL) {
  204.     return;
  205.     }
  206.  
  207.     ptr = final->data;
  208.     for (i = 0; i < raw->sizeY; i++) {
  209.     RawImageGetRow(raw, raw->tmpR, i, 0);
  210.     RawImageGetRow(raw, raw->tmpG, i, 1);
  211.     RawImageGetRow(raw, raw->tmpB, i, 2);
  212.     for (j = 0; j < raw->sizeX; j++) {
  213.         *ptr++ = *(raw->tmpR + j);
  214.         *ptr++ = *(raw->tmpG + j);
  215.         *ptr++ = *(raw->tmpB + j);
  216.     }
  217.     }
  218. }
  219.  
  220. RGBImageRec *rgbImageLoad(char *fileName)
  221. {
  222.     rawImageRec *raw;
  223.     RGBImageRec *final;
  224.  
  225.     raw = RawImageOpen(fileName);
  226.     if (raw == NULL) {
  227.     return NULL;
  228.     }
  229.  
  230.     final = (RGBImageRec *)malloc(sizeof(RGBImageRec));
  231.     if (final == NULL) {
  232.     RawImageClose(raw);
  233.     return NULL;
  234.     }
  235.     final->sizeX = raw->sizeX;
  236.     final->sizeY = raw->sizeY;
  237.  
  238.     RawImageGetData(raw, final);
  239.     RawImageClose(raw);
  240.  
  241.     return final;
  242. }
  243.  
  244. void rgbImageFree(RGBImageRec *img)
  245. {
  246.     if (img) {
  247.     if (img->data)
  248.         free(img->data);
  249.     free(img);
  250.     }
  251. }
  252.  
  253. /******************************************************************************/
  254.